home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
Text
/
Misc
/
TextloaderTNG
/
Rexx
/
FW-BoldItalic.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-09-02
|
696b
|
40 lines
/* Imports text from TLNG 2.0 to FinalWriter97 */
/* FW97_BoldItalic 1.0 © 10.08.99 by Jochen Grus */
OPTIONS RESULTS
ADDRESS "FINALW.1"
Status FontPath
fontpath = Result
Status FontName
fontname = Result
pos = LASTPOS('_', fontname)
IF (pos == 0) THEN
DO
fontpath = 'Normal'
END
ELSE DO
pos = LASTPOS('_', fontpath)
fontpath = 'Normal'
END
Style fontpath
IF (pos == 0) THEN
DO
fontpath = 'Bold'
END
ELSE DO
pos = LASTPOS('_', fontpath)
fontpath = 'Bold'
END
Style fontpath
pos = LASTPOS('_', fontname)
IF (pos == 0) THEN
DO
fontpath = 'Italic'
END
ELSE DO
pos = LASTPOS('_', fontpath)
fontpath = 'Italic'
END
Style fontpath
Type ' '
Paste